home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_05 / allison / bool.h < prev    next >
Text File  |  1995-03-23  |  178b  |  12 lines

  1. LISTING 15 - Simulates the C++ boolean data type
  2. // bool.h
  3. #if !defined(BOOL_H)
  4. #define BOOL_H
  5.  
  6. typedef int bool;
  7. const bool true = 1;
  8. const bool false = 0;
  9.  
  10. #endif
  11.  
  12.